/ Assembly List / LJCNetCommon / HTMLBuilder / StartWithNewLine

Namespace - LJCNetCommon


Parameters
allowNewLine - Indicates if a new line can be added.

Returns

true if allowed to start with a newline; otherwise false.

Syntax

C#
public Boolean StartWithNewLine(Boolean allowNewLine)

Allow text to start with a newline.

Example

C#
var hb = new HTMLBuilder();

bool retValue = hb.StartWithNewLine(true);
var result = retValue.ToString();

// result:
// False

Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.